type net/url.Userinfo

11 uses

	net/url (current package)
		url.go#L278: 	User     *Userinfo // username and password information
		url.go#L310: func User(username string) *Userinfo {
		url.go#L311: 	return &Userinfo{username, "", false}
		url.go#L322: func UserPassword(username, password string) *Userinfo {
		url.go#L323: 	return &Userinfo{username, password, true}
		url.go#L330: type Userinfo struct {
		url.go#L337: func (u *Userinfo) Username() string {
		url.go#L345: func (u *Userinfo) Password() (string, bool) {
		url.go#L354: func (u *Userinfo) String() string {
		url.go#L511: func parseAuthority(scheme, authority string) (user *Userinfo, host string, err error) {

	net/http
		clone.go#L48: 		u2.User = new(url.Userinfo)